Q3AttributeSet_GetNextAttributeType
You can use theQ3AttributeSet_GetNextAttributeType
function to iterate through all the attributes in an attribute set.
TQ3Status Q3AttributeSet_GetNextAttributeType ( TQ3AttributeSet source, TQ3AttributeType *type);
source
- An attribute set.
type
- On entry, an attribute type. On exit, the attribute type of the attribute that immediately follows that attribute in the attribute set.
DESCRIPTION
TheQ3AttributeSet_GetNextAttributeType
function returns, in thetype
parameter, the attribute type of the attribute that immediately follows the attribute having the type specified by thetype
parameter in the attribute set specified by thesource
parameter. To get the type of the first attribute in the attribute set, passkQ3AttributeTypeNone
in thetype
parameter.Q3AttributeSet_GetNextAttributeType
returnskQ3AttributeTypeNone
when it has reached then end of the list of attributes.